home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / pisces / diff / Imakefile < prev    next >
Encoding:
Makefile  |  1991-09-04  |  1.6 KB  |  59 lines

  1. /*****************************************************************************
  2. //
  3. // Copyright (C) 1991 Texas Instruments Incorporated.
  4. //
  5. // Permission is granted to any individual or institution to use, copy, modify,
  6. // and distribute this software, provided that this complete copyright and
  7. // permission notice is maintained, intact, in all copies and supporting
  8. // documentation.
  9. //
  10. // Texas Instruments Incorporated provides this software "as is" without
  11. // express or implied warranty.
  12. //
  13.  *****************************************************************************
  14.  *
  15.  *    Author: Martin Neath
  16.  *    Filename: Imakefile
  17.  *    Module: pisces/diff
  18.  *    Purpose: Imakefile for GNU diff
  19.  *    Creation Date: 05/16/90
  20.  *
  21.  *****************************************************************************/
  22.  
  23. /* Add -DHAVE_NDIR to STD_C_DEFS if your system used ndir.h instead of direnth
  24.  * Add -DHAVE_DIRECT to STD_C_DEFS if your system uses 'struct direct' instead
  25.  * of 'struct dirent' (this is the case at least with one add-on ndir library).
  26.  */
  27.  
  28. ALLCPLUSDEFS = 
  29.  
  30. HDRS1 = diff.h getopt.h limits.h regex.h
  31. HDRS2 =
  32.  
  33. SRCS1 = analyze.$(C) diff.$(C) dir.$(C) getopt.$(C) ifdef.$(C) \
  34.     normal.$(C) util.$(C) context.$(C) \
  35.     ed.$(C) getopt1.$(C) io.$(C) regex.$(C) version.$(C)
  36.  
  37. SRCS2 = diff3.$(C)
  38.  
  39. OBJS1 = analyze.$(OBJ) diff.$(OBJ) dir.$(OBJ) getopt.$(OBJ) ifdef.$(OBJ) \
  40.     normal.$(OBJ) util.$(OBJ) context.$(OBJ) \
  41.     ed.$(OBJ) getopt1.$(OBJ) io.$(OBJ) regex.$(OBJ) version.$(OBJ)
  42.  
  43. OBJS2 = diff3.$(OBJ)
  44.  
  45. LINKDEP =
  46.  
  47. LOCAL_C_DEFS = $(DFLAG)DIFF_PROGRAM=$(QUOTE)diff$(QUOTE)
  48.  
  49. #if OS2Platform
  50. STD_C_DEFS = $(DFLAG)USG
  51. #endif
  52.  
  53. All2(diff,diff3)
  54. OptimizeCObject()
  55. CProgram1(diff)
  56. CProgram2(diff3)
  57.  
  58.  
  59.